home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SPACE 2
/
SPACE - Library 2 - Volume 1.iso
/
program
/
316
/
libsrc
/
exit.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1988-10-20
|
233 b
|
16 lines
/* don't know why this is supposed to be here. chance to clean up before
exitting for real? */
#include <stdio.h>
exit(value)
int value;
{
fclose(stdin);
fclose(stdout);
fclose(stderr);
_exit(value);
}